iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 15
1
自我挑戰組

一日一CPE系列 第 15

[Day15]13190: Rockabye Tobby

  • 分享至 

  • xImage
  •  

考題日期:2017/09/26
題號:13190
星等:1
語言:C++


題目:
https://ithelp.ithome.com.tw/upload/images/20191001/20120937aokh9HWpYp.png


題意:
依照優先度給出要吃的藥和頻率。計算當吃完 k 次藥後吃藥的順序是甚麼。


程式:

#include <iostream>

using namespace std;
struct data{
    string med;
    int time;
};

int main()
{
    int test;
    cin>>test;
    while(test--)
    {
        int n,k,alltimes = 1 , key = 0;
        cin>>n>>k;
        struct data g[n];
        data *c = g;
        for(int i = 0 ; i < n ; i++)
        {
            cin>>c[i].med>>c[i].time;
        }
        while(key!=k)
        {
            for(int i = 0 ; i < n ; i++)
            {
                if(alltimes % c[i].time == 0)
                {
                    cout<<alltimes<<" "<<c[i].med<<endl;
                    key++;
                    if(key == k)
                        break;
                }
            }
             alltimes++;
        }
    }
    return 0;
}

測資:
https://ithelp.ithome.com.tw/upload/images/20191001/20120937zDmQPQKdmI.png


上一篇
[Day14]993: Product of Digits
下一篇
[Day16]11332: Summing Digits
系列文
一日一CPE30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言